#ifndef SINGLE
//  An adapted ObjectSpace example for use with SGI STL

#include <iostream.h>
#include <algo.h>

#ifdef MAIN
#define logicand_test main
#endif
#endif
int logicand_test(int, char**)
{
  cout<<"Results of logicand_test:"<<endl;
#ifndef ACORN_CFRONT
bool input1 [4] = { 1, 1, 0, 1 };
bool input2 [4] = { 0, 1, 0, 0 };
#else
static bool input1 [4] = { 1, 1, 0, 1 };
static bool input2 [4] = { 0, 1, 0, 0 };
#endif

  int output [4];
  transform(input1, input1 + 4, input2, output, logical_and<bool>());
  for(int i = 0; i < 4; i++)
    cout << output[i] << endl;
  return 0;
}
